The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "parallel::forkmanager"

Parallel::ForkManager - A simple parallel processing fork manager River stage three • 59 direct dependents • 142 total dependents

This module is intended for use in operations that can be done in parallel where the number of processes to be forked off should be limited. Typical use is a downloader which will be retrieving hundreds/thousands of files. The code for a downloader w...

YANICK/Parallel-ForkManager-2.02 - 08 Oct 2018 23:21:03 UTC - Search in distribution

Parallel::ForkManager::Scaled - Run processes in parallel based on CPU usage River stage one • 1 direct dependent • 1 total dependent

This module inherits from Parallel::ForkManager and adds the ability to automatically manage the number of processes running based on how busy the system is by watching the CPU idle time. Each time a child is about to be start()ed a new value for max...

JMCCARV/Parallel-ForkManager-Scaled-0.20 - 05 Dec 2018 16:43:36 UTC - Search in distribution

Parallel::ForkManager::Segmented - use Parallel::ForkManager on batches / segments of items. River stage one • 2 direct dependents • 3 total dependents

This module builds upon Parallel::ForkManager allowing one to pass a batch (or "segment") of several items for processing inside a worker. This is done in order to hopefully reduce the forking/exiting overhead....

SHLOMIF/Parallel-ForkManager-Segmented-0.10.1 - 28 Oct 2020 20:29:18 UTC - Search in distribution

Parallel::ForkManager::Segmented::Base - base class for Parallel::ForkManager::Segmented River stage one • 2 direct dependents • 5 total dependents

This module provides the new() and process_args() methods for Parallel::ForkManager::Segmented and for Parallel::Map::Segmented ....

SHLOMIF/Parallel-ForkManager-Segmented-Base-0.4.0 - 30 Sep 2020 13:25:44 UTC - Search in distribution

lib/Archer/Parallel/ForkManager.pm River stage zero No dependents

SONGMU/Archer-0.18 - 03 Sep 2014 15:46:08 UTC - Search in distribution

App::CLI::Plugin::Parallel::ForkManager - for App::CLI::Extension fork plugin module River stage zero No dependents

App::CLI::Plugin::Parallel::ForkManager - Parallel::ForkManager plugin module pm method setting __PACKAGE__->config( parallel_fork_manager => $maxprocs ); or if --maxprocs option is defined. it applies. # in MyApp/**.pm sub options { return ( "maxpro...

HOLLY/App-CLI-Plugin-Parallel-ForkManager-1.1 - 19 Sep 2011 02:00:26 UTC - Search in distribution

List-NSect-Parallel-ForkManager-example.pl - List::NSect Example with Parallel::ForkManager River stage zero No dependents

Group your tasks! The concept is that forking is fairly expensive and if your tasks are short then you do not want to spend more processing power forking than actually performing tasks....

MRDVT/List-NSect-0.07 - 06 Nov 2022 01:06:56 UTC - Search in distribution
  • List::NSect - Cuts or divides a list into N equal parts.

App::Prun - Provides the prun script as a command line interface to Parallel::ForkManager. River stage one • 1 direct dependent • 1 total dependent

JMCCARV/App-Prun-1.11 - 04 Oct 2022 19:58:03 UTC - Search in distribution
  • prun - Provides the prun script as a command line interface to Parallel::ForkManager.

Proc::tored::Pool - managed work pool with Proc::tored and Parallel::ForkManager River stage zero No dependents

Provides a simple and fast interfact to build and manage a pool of forked worker processes. The process is controlled using a pidfile and touch file....

JEFFOBER/Proc-tored-Pool-0.07 - 09 Mar 2017 13:42:15 UTC - Search in distribution

App::Prun::Scaled - Provides the sprun script as a command line interface to Parallel::ForkManager::Scaled. River stage zero No dependents

sprun allows you to utilize multiple CPUs for some workloads from the shell more easily. sprun takes a list of commands (stdin and/or from file(s)) and run the commands in parallel. sprun is a CLI front end to Paralell::ForkManager::Scaled. It runs c...

JMCCARV/App-Prun-Scaled-1.06 - 29 Apr 2017 15:38:49 UTC - Search in distribution

cloc - Count, or compute differences of, lines of source code and comments. River stage one • 1 direct dependent • 1 total dependent

Count, or compute differences of, physical lines of source code in the given files (may be archives such as compressed tarballs or zip files, or git commit hashes or branch names) and/or recursively below the given directories. It is written entirely...

FIBO/App-cloc-1.76 - 06 Apr 2018 21:07:26 UTC - Search in distribution

perlfaq8 - System Interaction River stage zero No dependents

This section of the Perl FAQ covers questions involving operating system interaction. Topics include interprocess communication (IPC), control over the user-interface (keyboard, screen and pointing devices), and most anything else not related to data...

ETHER/perlfaq-5.20240218 - 18 Feb 2024 17:37:36 UTC - Search in distribution

bam2wig.pl - A program to convert Bam alignments into a wig representation file. River stage zero No dependents

This program will enumerate aligned sequence tags and generate a wig, or optionally BigWig, file. Alignments may be counted and recorded in several different ways. Strict enumeration may be performed and recorded at either the alignment's start or mi...

TJPARNELL/Bio-ToolBox-1.691 - 13 Oct 2022 18:07:52 UTC - Search in distribution

AnyEvent::Task - Client/server-based asynchronous worker pool River stage one • 1 direct dependent • 1 total dependent

The synopses make this module look much more complicated than it actually is. In a nutshell, a synchronous worker process is forked off by a server whenever a client asks for one. The client keeps as many of these workers around as it wants and deleg...

FRACTAL/AnyEvent-Task-0.805 - 13 Feb 2017 17:02:33 UTC - Search in distribution

Net::Amazon::S3 - Use the Amazon S3 - Simple Storage Service River stage two • 13 direct dependents • 15 total dependents

This module provides a Perlish interface to Amazon S3. From the developer blurb: "Amazon S3 is storage for the Internet. It is designed to make web-scale computing easier for developers. Amazon S3 provides a simple web services interface that can be ...

BARNEY/Net-Amazon-S3-0.991 - 16 Jul 2022 23:48:15 UTC - Search in distribution

AnyEvent::Fork - everything you wanted to use fork() for, but couldn't River stage two • 7 direct dependents • 12 total dependents

This module allows you to create new processes, without actually forking them from your current process (avoiding the problems of forking), but preserving most of the advantages of fork. It can be used to create new worker processes or new independen...

MLEHMANN/AnyEvent-Fork-1.32 - 26 Jan 2022 16:44:27 UTC - Search in distribution

Proc::Queue - limit the number of child processes running River stage one • 1 direct dependent • 1 total dependent

This module lets you parallelise a perl program using the "fork", "exit", "wait" and "waitpid" calls as usual but without taking care of creating too many processes and overloading the machine. It redefines perl "fork", "exit", "wait" and "waitpid" c...

SALVA/Proc-Queue-1.23 - 07 Jan 2008 22:38:00 UTC - Search in distribution

Task::Kensho - A Glimpse at an Enlightened Perl River stage one • 4 direct dependents • 4 total dependents

Task::Kensho is a list of recommended, widely used and best-in-class modules for Enlightened Perl development. CPAN is wonderful, but there are too many wheels and you have to pick and choose amongst the various competing technologies. From <http://e...

ETHER/Task-Kensho-0.41 - 03 Jul 2021 03:40:21 UTC - Search in distribution

find_duplicate_perl River stage zero No dependents

Takes a list of directories and files as arguments and searches for duplicate Perl code in all files it finds there. For directories, we (currently) match files ending in ".pm", ".pl" and ".t". This limitation can be avoided by passing in the list of...

OVID/Code-CutNPaste-0.31 - 30 Apr 2013 09:22:57 UTC - Search in distribution

Text::Parts - split text file to some parts(from one line start to another/same line end) River stage zero No dependents

This module splits file by specified number of part. The range of each part is from one line start to another/same line end. For example, file content is the following: 1111 22222222222222222222 3333 4444 If "$splitter->split(num => 3)", split like t...

KTAT/Text-Parts-0.16 - 05 Sep 2013 16:59:59 UTC - Search in distribution
64 results (0.057 seconds)